home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / radiance / nextrad.lha / NeXtRad / makefile < prev    next >
Encoding:
Makefile  |  1993-02-20  |  415 b   |  11 lines

  1. CC=gcc
  2.  
  3. CFLAGS= -O2 -g 
  4.  
  5.  
  6. radiosity: datastruct.o render.o wireframe.o clip.o misc.o objIO.o vector-matrix.o hemicube.o mesh.o engine.o CView.o NeXtInterface.o 
  7.     $(CC) -o radiosity $(CFLAGS) datastruct.o clip.o misc.o objIO.o render.o hemicube.o wireframe.o mesh.o vector-matrix.o engine.o NeXtInterface.o CView.o -lNeXT_s -lsys_s -lm
  8.  
  9. engine.o: datastruct.o mesh.o render.o clip.o misc.o objIO.o vector-matrix.o 
  10.  
  11.